HTMLify
index.html
Views: 411 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Dot Target game</title> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Shrikhand"><link rel="stylesheet" href="./style.css"> </head> <body> <!-- partial:index.partial.html --> <div class="container"> <div class="parcial"></div> <div class="fourth-circle"> <span></span> <div class="third-circle"> <span></span> <div class="second-circle"> <span></span> <div class="first-circle"> <span></span> </div> </div> </div> </div> </div> <div class="points"> <span> Points: </span> <span id="points"> 0 </span> </div> <!-- partial --> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script><script src="./script.js"></script> </body> </html> |